projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b73ea44
)
(Fcatch): Doc fix.
author
Juanma Barranquero
<lekktu@gmail.com>
Wed, 1 Nov 2006 20:23:44 +0000
(20:23 +0000)
committer
Juanma Barranquero
<lekktu@gmail.com>
Wed, 1 Nov 2006 20:23:44 +0000
(20:23 +0000)
src/eval.c
patch
|
blob
|
history
diff --git
a/src/eval.c
b/src/eval.c
index 4e04422d2d6b2bd37797afe4d590bdb03b686fe1..7e9b4b55d09a8eb0c7d77dc2a8b0b5a4ebf7bd14 100644
(file)
--- a/
src/eval.c
+++ b/
src/eval.c
@@
-1174,7
+1174,7
@@
DEFUN ("catch", Fcatch, Scatch, 1, UNEVALLED, 0,
TAG is evalled to get the tag to use; it must not be nil.
Then the BODY is executed.
-Within BODY,
(throw TAG) with same tag exits BODY and exits
this `catch'.
+Within BODY,
a call to `throw' with the same TAG exits BODY and
this `catch'.
If no throw happens, `catch' returns the value of the last BODY form.
If a throw happens, it specifies the value to return from `catch'.
usage: (catch TAG BODY...) */)